SecurityDomain

class SecurityDomain : Domain

Security

Functions

certificateError
Link copied to clipboard
fun certificateError(): Flowable<CertificateErrorEvent>
There is a certificate error.
description
Link copied to clipboard
fun description(): String
Returns domain description.
disable
Link copied to clipboard
fun disable(): Single<RequestResponseFrame>
Disables tracking security state changes.
enable
Link copied to clipboard
fun enable(): Single<RequestResponseFrame>
Enables tracking security state changes.
events
Link copied to clipboard
fun events(): Flowable<Event>
Returns flowable capturing all domains events.
fun events(filter: Predicate<Event>): Flowable<Event>
Returns flowable capturing all domains events matching predicate.
fun <T : Event> events(eventClass: Class<T>): Flowable<T>
Returns flowable capturing all domain events of a given type.
fun <T : Event> events(eventClass: Class<T>, filter: Predicate<T>): Flowable<T>
Returns flowable capturing all domain events of a given type matching predicate.
getDependencies
Link copied to clipboard
open fun getDependencies(): List<Domain>
Returns domain dependencies.
handleCertificateError
Link copied to clipboard
fun handleCertificateError(input: HandleCertificateErrorRequest): Single<RequestResponseFrame>
Handles a certificate error that fired a certificateError event.
name
Link copied to clipboard
fun name(): String
Returns domain name.
securityStateChanged
Link copied to clipboard
fun securityStateChanged(): Flowable<SecurityStateChangedEvent>
The security state of the page changed.
setIgnoreCertificateErrors
Link copied to clipboard
Enable/disable whether all certificate errors should be ignored.
setOverrideCertificateErrors
Link copied to clipboard
Enable/disable overriding certificate errors.
visibleSecurityStateChanged
Link copied to clipboard
fun visibleSecurityStateChanged(): Flowable<VisibleSecurityStateChangedEvent>
The security state of the page changed.

Sources

jvm source
Link copied to clipboard